home *** CD-ROM | disk | FTP | other *** search
- :instal2.bat LMS FOXBASE RUNTIME
-
- echo off
- cls
- if %1x == x goto error1
- if %2x == x goto error1
- if %1x == %2x goto error1
- goto start
-
- :ERROR1
- ECHO ┌──────────────────────────────────────────┐
- ECHO │ You must type: INSTALL f: t: │
- ECHO │ │
- ECHO │ f: = Diskette drive letter (from) │
- ECHO │ t: = Hard disk drive letter (to) │
- ECHO │ │
- ECHO │ Example: INSTALL A: C: │
- ECHO └──────────────────────────────────────────┘
- GOTO EXIT
-
- :START
- CLS
- ECHO ┌──────────────────────────────────────────────────┐
- ECHO │ Product will be installed from %1 to %2 │
- ECHO └──────────────────────────────────────────────────┘
-
- ECHO Type ^c to abort or
- pause
-
-
- %2
- cd \
- md LMS
- cd LMS
-
-
- :------------------------------------------------------
- : Install FoxBase 2.10 runtime engine
- :------------------------------------------------------
- if not exist %1fox210r.exe goto exit
- copy %1fox210r.exe
- fox210r -r
-
- :exit
-